home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / c / cujoct93.zip / 1110092B < prev    next >
Text File  |  1993-08-10  |  232b  |  12 lines

  1. /* stack4.h: Using incomplete types */
  2.  
  3. #define STACK_ERROR (-32768)
  4.  
  5. struct stack;
  6. typedef struct stack Stack;
  7.  
  8. Stack *stack_create(int);
  9. int stack_push(Stack *,int);
  10. int stack_pop(Stack *);
  11. void stack_destroy(Stack *);
  12.